'use client' import React from 'react' import { Grid } from '@mui/material' import MuiGridItem from './MuiGridItem' export default function MuiGrid() { // checkout https://mui.com/material-ui/react-grid/ for detailed grid examples and documentation return ( {[0, 1, 2, 3, 4, 5, 6, 7, 8, 9].map((number) => { return ( ) })} ) }